Skip to main content

Get Response

AutomatR.GoogleForms.Activities.GetResponse

The "Get Response" activity in AutomatR is part of the Google Forms activities package, allowing users to retrieve details about a specific response within a Google Form. This activity uses the Google Forms API to access response data associated with a particular form.

Properties

NameDescription
Input
Form IDThe unique identifier of the form for which the response details are to be retrieved. String variables containing the Form ID. This field is required.
Response IDThe unique identifier of the response within the specified form. String variables containing the Response ID. This field is required.
Misc
Display NameProvides a customizable name for the activity displayed in the workflow. The display name enhances clarity and organization within the automation project. String variables containing the desired display name.
Optional
DelaySpecifies the amount of time (in seconds) to wait before starting the activity. Useful for handling synchronization issues. Integer variables containing the delay duration. Example: If the amount of time is 1000 milliseconds or 1 sec, i.e., 1.
Output
ResultReturns the response as Form Details in a FormResponse object format. Variables of type FormResponse to store the response details.

How to use:

  1. Drag and drop the "Get Response" activity onto the workflow.
  2. Configure the properties by specifying the Form ID and Response ID for which details are to be retrieved.
  3. Optionally, configure the delay before starting the activity.
  4. Execute the workflow to obtain details about the specified response within the Google Form.

Example:

Consider an example where the "Get Response" activity is used to retrieve details about a response in a Google Form with the Form ID "formId" and Response ID "responseId":

Get Response:
Form ID: "formId"
Response ID: "responseId"
Delay: 2
Result: formResponseDetails

In this example, the activity retrieves details about the specified response within the Google Form with the Form ID "formId" and Response ID "responseId." The response is stored in the variable "formResponseDetails" for further handling in the workflow.